type net/http.http2ErrCode
42 uses
net/http (current package)
h2_bundle.go#L1335: type http2ErrCode uint32
h2_bundle.go#L1338: http2ErrCodeNo http2ErrCode = 0x0
h2_bundle.go#L1339: http2ErrCodeProtocol http2ErrCode = 0x1
h2_bundle.go#L1340: http2ErrCodeInternal http2ErrCode = 0x2
h2_bundle.go#L1341: http2ErrCodeFlowControl http2ErrCode = 0x3
h2_bundle.go#L1342: http2ErrCodeSettingsTimeout http2ErrCode = 0x4
h2_bundle.go#L1343: http2ErrCodeStreamClosed http2ErrCode = 0x5
h2_bundle.go#L1344: http2ErrCodeFrameSize http2ErrCode = 0x6
h2_bundle.go#L1345: http2ErrCodeRefusedStream http2ErrCode = 0x7
h2_bundle.go#L1346: http2ErrCodeCancel http2ErrCode = 0x8
h2_bundle.go#L1347: http2ErrCodeCompression http2ErrCode = 0x9
h2_bundle.go#L1348: http2ErrCodeConnect http2ErrCode = 0xa
h2_bundle.go#L1349: http2ErrCodeEnhanceYourCalm http2ErrCode = 0xb
h2_bundle.go#L1350: http2ErrCodeInadequateSecurity http2ErrCode = 0xc
h2_bundle.go#L1351: http2ErrCodeHTTP11Required http2ErrCode = 0xd
h2_bundle.go#L1354: var http2errCodeName = map[http2ErrCode]string{
h2_bundle.go#L1371: func (e http2ErrCode) String() string {
h2_bundle.go#L1378: func (e http2ErrCode) stringToken() string {
h2_bundle.go#L1387: type http2ConnectionError http2ErrCode
h2_bundle.go#L1390: return fmt.Sprintf("connection error: %s", http2ErrCode(e))
h2_bundle.go#L1397: Code http2ErrCode
h2_bundle.go#L1406: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
h2_bundle.go#L1434: Code http2ErrCode // the ConnectionError error code
h2_bundle.go#L2141: func (fr *http2Framer) connError(code http2ErrCode, reason string) error {
h2_bundle.go#L2494: ErrCode http2ErrCode
h2_bundle.go#L2519: ErrCode: http2ErrCode(binary.BigEndian.Uint32(p[4:8])),
h2_bundle.go#L2524: func (f *http2Framer) WriteGoAway(maxStreamID uint32, code http2ErrCode, debugData []byte) error {
h2_bundle.go#L2839: ErrCode http2ErrCode
h2_bundle.go#L2851: return &http2RSTStreamFrame{fh, http2ErrCode(binary.BigEndian.Uint32(p[:4]))}, nil
h2_bundle.go#L2858: func (f *http2Framer) WriteRSTStream(streamID uint32, code http2ErrCode) error {
h2_bundle.go#L4559: func (sc *http2serverConn) rejectConn(err http2ErrCode, debug string) {
h2_bundle.go#L4620: goAwayCode http2ErrCode
h2_bundle.go#L5480: func (sc *http2serverConn) goAway(code http2ErrCode) {
h2_bundle.go#L5555: sc.goAway(http2ErrCode(ev))
h2_bundle.go#L7312: var code http2ErrCode
h2_bundle.go#L7316: code = http2ErrCode(e)
h2_bundle.go#L7319: code = http2ErrCode(e.Code)
h2_bundle.go#L9422: cc.fr.WriteGoAway(0, http2ErrCode(ce), nil)
h2_bundle.go#L9431: ErrCode http2ErrCode
h2_bundle.go#L9522: errCode := http2ErrCode(ce)
h2_bundle.go#L10360: func (cc *http2ClientConn) writeStreamReset(streamID uint32, code http2ErrCode, ping bool, err error) {
h2_bundle.go#L10827: code http2ErrCode